---
title: Download Scoring Code from the Leaderboard
description: Download a Scoring Code JAR file directly from the Leaderboard.

---

# Download Scoring Code from the Leaderboard {: #download-scoring-code-from-the-leaderboard }

You can download [Scoring Code](sc-overview) for models as pre-compiled JAR files (with all dependencies included) to be used outside of the DataRobot platform. This topic describes how to download Scoring Code from the Leaderboard. Alternatively, you can download from a [deployment](#deployment-download).

## Leaderboard download {: #leaderboard-download }

!!! info "Availability information"
     The ability to download Scoring Code for a model from the Leaderboard depends on the [MLOps configuration](pricing) for your organization.

If you have built a model with AutoML and want to download Scoring Code, you can download directly from the Leaderboard:

1. Navigate to the model on the Leaderboard, select the **Predict > Portable Predictions** tab, and select **Scoring Code**. Complete the fields described below.

    ![](images/scdl-1.png)

    | | Element | Description |
    |-|---------|-------------|
    | ![](images/icon-1.png) | Scoring Code | Provides a Java package containing your DataRobot model. Under **Portable Prediction Method**, select **Scoring Code**. You can alternatively select **[Portable Prediction Server](portable-pps)** to set up a REST API-based prediction server.  |
    | ![](images/icon-2.png) | Coding language | Select the location from which you want to call the Scoring Code: [Python API](https://pypi.org/project/datarobot-predict/){ target=_blank }, [Java API](quickstart-api#java-api-example), or the [command line interface (CLI)](scoring-cli). Selecting a location updates the example snippet displayed below to the corresponding language. |
    | ![](images/icon-3.png) |  Include Prediction Explanations | Includes code to calculate [Prediction Explanations](pred-explain/index) with your Scoring Code. This allows you to get Prediction Explanations from your Scoring Code by adding the command line option: `--with-explanations`. See [Scoring at the command line](scoring-cli) for more information.|
    | ![](images/icon-4.png) | Include Prediction Intervals (for time series) | Includes code to calculate [Prediction Intervals](ts-predictions#prediction-preview) with your Scoring Code. This allows you to get Prediction Intervals (from 1 to 99) from your Scoring Code by adding the command line option: `--interval_length=<integer value from 1 to 99>`. See [Scoring at the command line](scoring-cli) for more information.|
    | ![](images/icon-5.png) | Prepare and download / Prepare and download as source code | <ul><li>**Prepare and download**: Downloads the Scoring Code as a Java package. The package contains compiled Java executables, which include all dependencies and can be used to make predictions.</li><li>**Prepare and download as source code**: Downloads Java source code files. These are a non-obfuscated version of the model; they cannot be used to score the model since they are not compiled and dependency packages are not included. Use the source files to explore the model’s decision-making process. This option is only available if you don't have the monitoring agent and prediction explanations enabled.</li></ul> |
    | ![](images/icon-6.png) | Example | Provides a code example that calls the Scoring Code using the selected coding language. |
    | ![](images/icon-7.png) | Copy to clipboard | Copies the Scoring Code example to your clipboard so that you can paste it in your IDE or on the command line.  |

    !!! tip
        Access the [DataRobot Prediction Library](https://pypi.org/project/datarobot-predict/){ target=_blank } to make predictions using Scoring Code and other prediction methods supported by DataRobot via a Python API. The library provides a common interface for making predictions, making it easy to swap out any underlying implementation.

3. Once the settings are configured, click **Prepare and download** to download a Java package or **Prepare and download as source code** to download source code files. The download appears in the downloads bar when complete.

4. Use the snippet provided on the tab to call the Scoring Code.
